home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / mig / Mig_DeleteHost.c < prev    next >
C/C++ Source or Header  |  1990-06-22  |  2KB  |  79 lines

  1. /* 
  2.  * Mig_DeleteHost.c --
  3.  *
  4.  *    Delete information about a host from the load average data base.
  5.  *    This is done by performing an ioctl to the global server with
  6.  *    the sprite ID of the host to be deleted.
  7.  *
  8.  * Copyright 1988, 1990 Regents of the University of California
  9.  * Permission to use, copy, modify, and distribute this
  10.  * software and its documentation for any purpose and without
  11.  * fee is hereby granted, provided that the above copyright
  12.  * notice appear in all copies.  The University of California
  13.  * makes no representations about the suitability of this
  14.  * software for any purpose.  It is provided "as is" without
  15.  * express or implied warranty.
  16.  */
  17.  
  18. #ifndef lint
  19. static char rcsid[] = "$Header: /sprite/src/lib/c/mig/RCS/Mig_DeleteHost.c,v 2.1 90/06/22 14:58:17 douglis Exp $ SPRITE (Berkeley)";
  20. #endif /* not lint */
  21.  
  22.  
  23. #include <sprite.h>
  24. #include <stdio.h>
  25. #include <mig.h>
  26. #include <errno.h>
  27.  
  28.  
  29. /*
  30.  *----------------------------------------------------------------------
  31.  *
  32.  * Mig_DeleteHost --
  33.  *
  34.  *    Tell the global daemon to remove a host from its records, so
  35.  *    the host won't be listed as being down.  This is useful if
  36.  *    a host is renamed or otherwise removed. 
  37.  *
  38.  * Results:
  39.  *    0 if successful, or -1 on error, with errno indicating the error.
  40.  *
  41.  * Side effects:
  42.  *    Does ioctl to server.
  43.  *
  44.  *----------------------------------------------------------------------
  45.  */
  46. int
  47. Mig_DeleteHost(hostID)
  48.     int hostID;            /* ID of host to remove. */
  49. {
  50.     int status;
  51.     
  52.     if (mig_GlobalPdev < 0) {
  53.     if (MigOpenPdev(TRUE) < 0) {
  54.         return(-1);
  55.     }
  56.     }
  57.         
  58.     if (MigSetAlarm() < 0) {
  59.     fprintf(stderr,
  60.         "Error setting alarm for contact with migd.\n");
  61.     return(-1);
  62.     }
  63.     status = Fs_IOControl(mig_GlobalPdev, IOC_MIG_KILL,
  64.                   sizeof(int), (char *) &hostID, 0,
  65.                   (char *) NULL);
  66.     if (MigClearAlarm() < 0) {
  67.     fprintf(stderr,
  68.         "Error clearing alarm for contact with migd.\n");
  69.     }
  70.     if (status != SUCCESS) {
  71.     fprintf(stderr,
  72.            "Mig_DeleteHost: error during ioctl to global master: %s\n",
  73.            Stat_GetMsg(status));
  74.     errno = Compat_MapCode(status);
  75.     return(-1);
  76.     }
  77.     return(0);
  78. }
  79.